home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / INSERT TOOLTIP.SCRIPT < prev    next >
Encoding:
Text File  |  1999-01-11  |  635 b   |  27 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1999 - Modelworks Software
  3. // @Created build 250 cm19990106
  4.  
  5. // Insert script helper for:
  6.  
  7. /**
  8. @Object: Command 
  9. @Property: toolTip - contains the text that will be displayed in the tool 
  10. tip when the user moves the mouse over the button. 
  11. @Syntax: command.toolTip
  12. @Summary: toolTip - contains the text that will be displayed in the tool tip 
  13. */
  14.  
  15. function DoCommand()
  16. {
  17.   var editor = getActiveEditor();
  18.   if (editor)
  19.   {
  20.     var selection = editor.getSelection();
  21.     editor.replace("command.toolTip", selection);
  22.     editor.setActive("Insert command.toolTip");
  23.   }
  24. }
  25.  
  26. !!/Script
  27.